Announcement

Collapse
No announcement yet.

prevent origRGB being saved?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • prevent origRGB being saved?

    Is there any way to prevent origRGB being saved with "Separate render channels"? I just need the sequence with the Lens Effects applied.

  • #2
    No, but here is a script with which you can. It saves only the EffectsResult channel:
    Code:
    fn SaveEffectsResultOnly =
    (
        startFrame = 0
        endFrame = 50
        for i = startFrame to endFrame do
        (
            slidertime = i
            max quick render
            outputImg = @"C:\Users\Alexander\Desktop\effects\" + i as string + ".exr" 
            vfbControl #setchannel (vfbControl #getchannel effectsresult)[1]
            vfbControl #saveimage outputImg
        )
    )
    try(SaveEffectsResultOnly())catch()
    Set to render single images, open the script (Scripting>Open script), enter the start and end frame, replace the path and format and Evaluate All (Toolts>Evaluate all).
    Aleksandar Hadzhiev | chaos.com
    Chaos Support Representative | contact us

    Comment


    • #3
      Thanks!
      I'll try it out.

      Comment

      Working...
      X